home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / t100.zoo / bold.c next >
C/C++ Source or Header  |  1991-09-15  |  550b  |  39 lines

  1. /*
  2.  *    bold.c
  3.  */
  4.  
  5. #ifndef lint
  6. static char *rcsid_bold_c = "$Id: bold.c,v 1.0 1991/09/12 20:32:56 rosenkra Exp $";
  7. #endif
  8.  
  9. /*
  10.  * $Log: bold.c,v $
  11.  * Revision 1.0  1991/09/12  20:32:56  rosenkra
  12.  * Initial revision
  13.  *
  14.  */
  15.  
  16. #include "bold.h"
  17.  
  18. int    load_msp_font (int, short *);
  19.  
  20. /*------------------------------*/
  21. /*    fnt_bold        */
  22. /*------------------------------*/
  23. void fnt_bold ()
  24. {
  25.  
  26. /*
  27.  *    set font to bold
  28.  */
  29.  
  30.     extern short    f8x16bo[];    /* font data, bold */
  31.  
  32.     load_msp_font (1, (short *) f8x16bo);
  33.  
  34.     return;
  35. }
  36.  
  37.  
  38.  
  39.